home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 32
/
Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso
/
Aminet
/
dev
/
lang
/
Python152_Src.lha
/
Python152_Source
/
Include
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-01-05
|
286b
|
13 lines
all:
@echo Nothing to make in this directory.
clean:
find . '(' -name '*.pyc' -o -name '*.fdc' \
-o -name core -o -name '*~' \
-o -name '[@,#]*' -o -name '*.old' \
-o -name '*.orig' -o -name '*.rej' \
-o -name '*.bak' ')' \
-print -exec rm -f {} ';'
clobber: clean